home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / extras / programm / gemfsc20 / gemfsc20.lzh / GEMFUNCS / RCCOPY.C < prev    next >
Text File  |  1993-03-07  |  461b  |  15 lines

  1. /**************************************************************************
  2.  * RCCOPY.C - Copy a rectangle (or any 2 longwords).
  3.  *    we cheat bigtime here:    we don't include any headers, and thus get
  4.  *    away with totally lying about the types of the two pointer args.
  5.  *************************************************************************/
  6.  
  7. void rc_copy(psrce, pdest)
  8.     long *psrce;
  9.     long *pdest;
  10. {
  11.     pdest[0] = psrce[0];
  12.     pdest[1] = psrce[1];
  13. }
  14.  
  15.